summaryrefslogtreecommitdiff
path: root/src/game.cpp
blob: f3b58282972b344e10580770a6c7d42571164b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "game.h"

Game::Game()
{
}

Game::~Game()
{
	for( FunctionHash::iterator i = hFunction.begin(); i; i++ )
	{
		delete (*i);
	}
	for( SituationHash::iterator i = hSituation.begin(); i; i++ )
	{
		delete (*i);
	}
}